home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / modem / ezdia175.zip / EXAMPLE1.LST < prev    next >
File List  |  1995-09-22  |  736b  |  23 lines

  1. ; This is an example a zip, download and unzip script.
  2. ;
  3. ; First, make sure the .ZIP file starts fresh...
  4. delete k:\somedir\somefile.zip server
  5. ;
  6. ; Zip all the .WRI files...
  7. zip k:\somedir\somefile.zip k:\somedir\*.wri server
  8. ;
  9. ; Then, zip all the .BMP files...
  10. zip k:\somedir\somefile.zip k:\somedir\*.bmp server
  11. ;
  12. ; Now, send down to waiting client the file with WRI's and BMP's...
  13. download k:\somedir\somefile.zip c:\otherdir\somefile.zip
  14. ;
  15. ; No longer need the .ZIP file on the server...
  16. delete k:\somedir\somefile.zip server
  17. ;
  18. ; Unzip the file on the client side...
  19. unzip c:\otherdir\somefile.zip c:\otherdir client
  20. ;
  21. ; Finally, remove the .ZIP file from the client...
  22. delete c:\otherdir\somefile.zip client
  23.